Test Body Is Somewhere Else ^^^^^ **Definition:** * When the test method calls another method entirely with no other implementation in the test method – often a sign of missing parameterised test **Code Example:** .. code-block:: java @Test public void hasCorrectFoo() { checkFoo(); } private static checkFoo() { Foo foo = service.getFoo(); assertThat(foo.getBar()).isEqualTo("baz"); } **References:** .. admonition:: Quality attributes * :octicon:`file-code;1em` - Code Example * :octicon:`comment-discussion;1em` - Cause and Effect * :octicon:`graph;1em` - Frequency * :octicon:`sync;1em` - Refactoring * `Test Smells - The Coding Craftsman `_ :octicon:`file-code;1em`